home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  172 b   |  12 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int isatty(int fd)
  5. {
  6.   int istty;
  7.  
  8.   chkabort();
  9.   if (ioctl(fd, _AMIGA_INTERACTIVE, &istty) != 0) return 0;
  10.   return istty;
  11. }
  12.